home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 139
/
(Vol 139) Sep 24 2011.iso
/
Games
/
theme_park_thriller.swf
/
scripts
/
frame_35
/
DoAction.as
Wrap
Text File
|
2011-09-24
|
1KB
|
39 lines
funcLoadScores = function()
{
var _loc5_ = new LoadVars();
_loc5_.onLoad = function(success)
{
if(success)
{
i = 0;
while(i < 10)
{
var _loc2_ = main["score" + i + "_mc"];
_loc2_.rank_txt.text = String(i + 1);
var _loc3_ = this["name" + i];
trace(_loc3_ + " " + i);
if(_loc3_ == null || _loc3_ == undefined)
{
_loc2_.name_txt.text = "AA";
_loc2_.score_txt.text = 0;
}
else
{
_loc2_.name_txt.text = this["name" + i];
_loc2_.score_txt.text = this["score" + i];
}
_loc2_._visible = true;
i++;
}
}
else
{
alert("NOMO");
}
};
var _loc6_ = _global.path + "gamepad/play/games/getGameHighScores.asp?gameID=" + _global.gameID;
_loc5_.load(_loc6_);
};
stop();
funcLoadScores();